home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib1 / v_01_05 / 1n05048a < prev    next >
Encoding:
Text File  |  1995-11-01  |  183 b   |  20 lines

  1.  
  2. enum etype {e1, e2, e3};
  3.  
  4. struct  stype
  5.     {
  6.     int a;
  7.     float b;
  8.     };
  9.  
  10. union utype
  11.     {
  12.     long l;
  13.     float f;
  14.     };
  15.  
  16. enum   etype evar;
  17. struct stype svar;
  18. union  utype uvar;
  19.  
  20.